home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
ListBoxProxy.h
< prev
next >
Wrap
Text File
|
1997-01-22
|
1KB
|
47 lines
/*
* File: ListBoxProxy.h
* Function: Proxy for TListBox subclasses.
* Written by: Jesse Jones
*
* Copyright ゥ 1997 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 1/22/97 JDJ Created
*/
#pragma once
#include <ZListBox.h>
// ===================================================================================
// class CListBoxProxy
// ===================================================================================
class CListBoxProxy : public TListBox<int> {
typedef TListBox<int> Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CListBoxProxy();
CListBoxProxy(const string& name, TView* superView, const TRect& frame, MCommander* super);
//-----------------------------------
// Inherited API
//
public:
virtual void OnDrawCell(TCanvas& canvas, const TRect& cellBounds, const int& item, bool isSelected);
//-----------------------------------
// TReanimator Support
//
public:
static MReanimatable* Create(MReanimatable* parent);
};